stopwords = }.fromkeys(['的', '附近']) segs = jieba.cut('北京附近的租房', cut_all=False) final = '' for seg in segs: seg = seg.encode('gbk') if seg not in stopwords: final += seg print final posted @ 2015-11-10 15:20 xiaoli20